// Place your name class time and date here #include using std::cin; using std::cout; using std::endl; using std::ios_base; void fun(int x) { cout << "void fun(int x)" << endl; } void fun(int list[]) { cout << "void fun(int list[])" << endl; } void fun(int list[][4]) { cout << "void fun(int list[][4])" << endl; } void fun(int list[][4][4]) { cout << "void fun(int list[][4][4])" << endl; } void main() { int x = 8; int A[4]= {0,1,2,88}; //int A[4]= {1}; int A2[4][4]; int Matrices[25][4][4]; fun(x); fun(A); fun(A2); fun(Matrices); fun(A[0]); fun(A2[0]); fun(A2[0][0]); fun(Matrices[0]); fun(Matrices[0][0]); fun(Matrices[0][0][0]); for(int row = 0; row < 4; row++) { cout << " Row " << row + 1 << "? "; for(int column = 0; column < 4; column++) { cin >> A2[row][column]; } } cout << endl; for(int row = 0; row < 4; row++) { cout << " Row " << row + 1 << ": "; for(int column = 0; column < 4; column++) { cout << A2[row][column] << " "; } cout << endl; } }